ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / BoxWhisker<T> Class / GapWidth Property






In This Topic
    GapWidth Property (BoxWhisker<T>)
    In This Topic
    Gets or sets a value that determines the gap width as a percentage for the Box and Whisker chart. The default value for this property is 0.1. The min value is 0 and max value is 1.
    Syntax
    'Declaration
     
    
    <System.ComponentModel.DefaultValueAttribute(0.1)>
    Public Property GapWidth As System.Single
    'Usage
     
    
    Dim instance As BoxWhisker(Of T)
    Dim value As System.Single
     
    instance.GapWidth = value
     
    value = instance.GapWidth
    [System.ComponentModel.DefaultValue(0.1)]
    public System.float GapWidth {get; set;}
    public read-write property GapWidth: System.Single; 
    System.ComponentModel.DefaultValueAttribute(0.1)
    public function get,set GapWidth : System.float
    [System.ComponentModel.DefaultValue(0.1)]
    public: __property System.float get_GapWidth();
    public: __property void set_GapWidth( 
       System.float value
    );
    [System.ComponentModel.DefaultValue(0.1)]
    public:
    property System.float GapWidth {
       System.float get();
       void set (    System.float value);
    }
    See Also